{% extends 'base.html' %} {% load static %} {% block head_title %}{{ post.title }}{% endblock %} {% block content %}

{{ post.title }}

created: {{ post.created_on|date:"N j Y" }}, last updated: {{ post.updated_on|timesince }}, by {{ post.author }}
{% for tag in post.tags.all %} {{ tag }} {% endfor %}
{% if post.image %} {{ post.title }} {% endif %} {% if post.author == request.user %} {% endif %}
{{ post.content }}
{% if comments %}
Comment{{ comments.count|pluralize }} {{ comments.count }}
{% for comment in comments %}
Avatar {{ comment.name }} said

{{ comment.content }}

{{ comment.created }}

{% endfor %}
{% endif %}

Leave a comment

{% csrf_token %}
{{ form.name.label_tag }}
{{ form.email.label_tag }} (Your email address will not be published)
{{ form.content.label_tag }}
{% endblock content %}